.ts-hua-product-matrix {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ts-hua-product-title-main {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
  margin-top: 60px;
}

.ts-hua-product-title-line {
  margin-top: 10px;
  width: 55px;
  height: 2px;
  background: #ee7700;
}

.ts-hua-product-content {
  display: grid;
  /* 三列 */
  grid-template-columns: repeat(4, 1fr);
  /* 间距 */
  grid-gap: 20px;
}

.ts-hua-product-content-item {
  width: 285px;
  border-radius: 12px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #eeeeee;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 60px 42px 50px 42px;
}
.ts-hua-product-content-item-img {
  width: 144px;
  height: 144px;
  border-radius: 100%;
  background-color: #d8d8d8;
}

.ts-hua-product-content-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ts-hua-product-content-item-title {
  font-size: 20px;
  text-align: center;
  color: #333333;
  margin-top: 47px;
}

.ts-hua-product-content-item-desc {
  font-size: 14px;
  font-weight: 350;
  text-align: center;
  color: #999999;
  margin-top: 10px;
  max-width: 201px;

  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3rem;
}

.ts-hua-product-content-item-btn {
  display: flex;
  box-sizing: border-box;
  border: 1px solid #0064de;
  border-radius: 25px;
  padding: 8px 44px 8px 44px;
  margin-top: 25px;
  color: #0064de;
  font-size: 16px;
}

@media screen and (min-width: 0px) and (max-width: 570px) {
  .ts-hua-product-content {
    grid-template-columns: repeat(1, 1fr);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ts-hua-product-matrix {
    justify-content: center;
  }
}
@media screen and (min-width: 570px) and (max-width: 768px) {
  .ts-hua-product-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .ts-hua-product-content-item {
    width: 259px;
    height: auto;
  }
  
  .ts-hua-product-matrix {
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .ts-hua-product-content {
    grid-template-columns: repeat(2, 1fr);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .ts-hua-product-content {
    grid-template-columns: repeat(3, 1fr);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
